SUPPORT / SAMPLES & SAS NOTES
 

Support

Problem Note 42425: SQLPLAN error might occur when creating a new variable based on another new variable

DetailsHotfixAboutRate It

In Base SAS® software, SQLPLAN errors might occur when the following events take place:

  • The PROC SQL query contains a subquery or inline view
  • A new variable is being created based on a calculated variable
  • The new variable is being used in a summary function outside the query

The following code illustrates one case that can produce the SQLPLAN internal error:

proc sql; create table attempt1 as select sum(treated)/sum(size) as NYC_AVG from (select provider_number, case hcahps_question when 1 then 50 when 2 then 200 else 400 end as size, floor((calculated size * hcahps_answer_percent)/100) as treated from nyc_hosp) group by provider_number ; quit;

In this case, the following error messages are generated:

ERROR: sqlplan internal error: Cannot find symbol treated, var=3,
tag=0001. This message can be caused by attempting to make correlated 
references between two different items on a single FROM clause.

The workaround is to move the creation of the variable to outside the subquery/inline view.



Operating System and Release Information

Product FamilyProductSystemSAS Release
ReportedFixed*
SAS SystemBase SASz/OS9.1 TS1M3 SP49.3 TS1M0
Microsoft® Windows® for 64-Bit Itanium-based Systems9.1 TS1M3 SP49.3 TS1M0
Microsoft Windows Server 2003 Datacenter 64-bit Edition9.1 TS1M3 SP49.3 TS1M0
Microsoft Windows Server 2003 Enterprise 64-bit Edition9.1 TS1M3 SP49.3 TS1M0
Microsoft Windows XP 64-bit Edition9.1 TS1M3 SP49.3 TS1M0
Microsoft Windows 2000 Advanced Server9.1 TS1M3 SP4
Microsoft Windows 2000 Datacenter Server9.1 TS1M3 SP4
Microsoft Windows 2000 Server9.1 TS1M3 SP4
Microsoft Windows 2000 Professional9.1 TS1M3 SP4
Microsoft Windows NT Workstation9.1 TS1M3 SP4
Microsoft Windows Server 2003 Datacenter Edition9.1 TS1M3 SP49.3 TS1M0
Microsoft Windows Server 2003 Enterprise Edition9.1 TS1M3 SP49.3 TS1M0
Microsoft Windows Server 2003 Standard Edition9.1 TS1M3 SP49.3 TS1M0
Microsoft Windows XP Professional9.1 TS1M3 SP49.3 TS1M0
Windows Vista9.1 TS1M3 SP49.3 TS1M0
Windows Vista for x649.1 TS1M3 SP49.3 TS1M0
64-bit Enabled AIX9.1 TS1M3 SP49.3 TS1M0
64-bit Enabled HP-UX9.1 TS1M3 SP49.3 TS1M0
64-bit Enabled Solaris9.1 TS1M3 SP49.3 TS1M0
HP-UX IPF9.1 TS1M3 SP49.3 TS1M0
Linux9.1 TS1M3 SP49.3 TS1M0
Linux on Itanium9.1 TS1M3 SP49.3 TS1M0
OpenVMS Alpha9.1 TS1M3 SP49.3 TS1M0
Solaris for x649.1 TS1M3 SP49.3 TS1M0
Tru64 UNIX9.1 TS1M3 SP49.3 TS1M0
* For software releases that are not yet generally available, the Fixed Release is the software release in which the problem is planned to be fixed.